home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / comm / envoy / EnvoyARexx02b.lha / EnvoyARexx / EnvoyARexx.doc < prev   
Text File  |  1995-07-07  |  3KB  |  109 lines

  1. OVERVIEW
  2. --------
  3.  
  4. EnvoyARexx emulates ARexx-ports on your local machine. Incoming
  5. ARexx-messages will be forwarded to a remote machine (via Envoy). Only
  6. the remote machine actually runs the respective ARexx-application
  7. (host). The result of each ARexx-command will be returned to your
  8. local machine.
  9.  
  10. EnvoyARexx is beta, so don't blame me...
  11.  
  12.  
  13. DISCLAIMER/COPYRIGHT
  14. --------------------
  15.  
  16. As usual... All rights belong to me, all risks belong to you.
  17.  
  18. Copyright © 1995 Alexander Stirmlinger, freeware, provided "as-is",
  19. commercial usage not allowed!
  20.  
  21.  
  22.  
  23. USAGE
  24. -----
  25.  
  26. EnvoyARexx has to be controlled via ARexx (port: ENVOYAREXX). At the
  27. moment, EnvoyARexx's host understands only 3 commands:
  28.  
  29. CONNECTHOST <Remote_machine> <Remote_ARexx-port> <Local_ARexx-port>
  30.  
  31.   (the <Local_ARexx-port> argument is optional)
  32.  
  33. DISCONNECTHOST <ARexx-port>
  34.  
  35. QUIT
  36.  
  37.  
  38. Here is an example how to connect to Term's ARexx-port on a remote
  39. machine (the remote machine's name is A2000):
  40.  
  41. 1. Start EnvoyARexx on both machines.
  42.  
  43. 2. Start Term on the remote machine (A2000).
  44.  
  45. 3. Type   rx 'address ENVOYAREXX CONNECTHOST A2000 TERM'
  46.    on your local machine.
  47.  
  48.    (EnvoyARexx will now create a port 'TERM' on the local machine)
  49.  
  50. 4. Type   rx 'address TERM SEND LOCAL "Only Amiga makes it possible\n\r"'
  51.    on your local machine.
  52.  
  53.    (Term will now output the text; please refer Term's ARexx-manual)
  54.  
  55. 5. Type   rx 'address ENVOYAREXX DISCONNECTHOST TERM'
  56.    on your local machine.
  57.  
  58.    (EnvoyARexx will now close the 'TERM'-port on the local machine)
  59.  
  60. 6. Type   rx 'address ENVOYAREXX QUIT'
  61.    on both machines to quit EnvoyARexx.
  62.  
  63.  
  64. Of course, you can run ARexx-scripts on your local machine. The scripts
  65. will have no clue, that their host is actually running on an other
  66. machine in your network.
  67.  
  68.  
  69. COMPATIBILITY
  70. -------------
  71.  
  72. I've tested EnvoyARexx successfully with the following programs:
  73.  
  74. Term (4.3a), Spot, ADM, Scout, Ed, OEd, HiTex, NetCall, PhoneCall.
  75.  
  76. Term 4.2 crashed when I tested it with EnvoyARexx. However, 4.3a works
  77. fine.
  78.  
  79.  
  80. BETA-VERSION/FUTURE VERSIONS
  81. ----------------------------
  82.  
  83. As mentioned, EnvoyARexx is beta. I released this version on the Aminet
  84. to find out, if anyone finds this program useful and worth to develop
  85. in the future. So, please let me know...
  86.  
  87.  
  88. Alexander Stirmlinger
  89. EMail: alex@picard.unterland.de
  90. Fido:  2:246/1045.11
  91.  
  92.  
  93. HISTORY
  94. -------
  95.  
  96. 0.1b  : First public beta-version
  97.  
  98. 0.2b  : CONNECTHOST-command changed. EnvoyARexx is now able to create
  99.         local ports with different names than the remote ports.
  100.  
  101.         EnvoyARexx does not longer send fixed-size data-packets. Therefore,
  102.         a faster command-execution can be noticed.
  103.  
  104.         It's now possible to connect to the 'COMMAND' "port" on the remote
  105.         machine. All commands sent to the COMMAND-port will be
  106.         synchronously executed via SystemTagList ().
  107.  
  108.         Debug-output removed.
  109.